diff options
| author | Ken Raeburn | 2000-02-11 06:04:09 +0000 |
|---|---|---|
| committer | Ken Raeburn | 2000-02-11 06:04:09 +0000 |
| commit | 8476c2f86f922f8e926e0c7b5d2b8026903194df (patch) | |
| tree | 07d9d12b929054f36f1028ca4a57a1cd30530b4e /src | |
| parent | 233cc02d548aceeec1234570cf19c8633b450c01 (diff) | |
| download | emacs-8476c2f86f922f8e926e0c7b5d2b8026903194df.tar.gz emacs-8476c2f86f922f8e926e0c7b5d2b8026903194df.zip | |
* Makefile.in (LIBX): Link in tiff library before jpeg, since tiff library may
depend on jpeg.
(atimer.o): Depends on atimer.c.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 6 | ||||
| -rw-r--r-- | src/Makefile.in | 4 |
2 files changed, 8 insertions, 2 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 2beecd27311..6605d3b8aec 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,9 @@ | |||
| 1 | 2000-02-11 Ken Raeburn <raeburn@gnu.org> | ||
| 2 | |||
| 3 | * Makefile.in (LIBX): Link in tiff library before jpeg, since tiff | ||
| 4 | library may depend on jpeg. | ||
| 5 | (atimer.o): Depends on atimer.c. | ||
| 6 | |||
| 1 | 2000-02-11 Kenichi Handa <handa@etl.go.jp> | 7 | 2000-02-11 Kenichi Handa <handa@etl.go.jp> |
| 2 | 8 | ||
| 3 | * insdel.c (del_range_1): Call update_compositions. | 9 | * insdel.c (del_range_1): Call update_compositions. |
diff --git a/src/Makefile.in b/src/Makefile.in index 90f9d2e84af..84317d1f28b 100644 --- a/src/Makefile.in +++ b/src/Makefile.in | |||
| @@ -420,7 +420,7 @@ LIBXT= | |||
| 420 | /* LD_SWITCH_X_DEFAULT comes after everything else that specifies | 420 | /* LD_SWITCH_X_DEFAULT comes after everything else that specifies |
| 421 | options for where to find X libraries, but before those libraries. */ | 421 | options for where to find X libraries, but before those libraries. */ |
| 422 | X11_LDFLAGS = LD_SWITCH_X_SITE LD_SWITCH_X_DEFAULT | 422 | X11_LDFLAGS = LD_SWITCH_X_SITE LD_SWITCH_X_DEFAULT |
| 423 | LIBX= $(LIBXMENU) $(X11_LDFLAGS) $(LIBXT) LIB_X11_LIB LIBX11_MACHINE LIBX11_SYSTEM LIBXPM LIBJPEG LIBPNG LIBTIFF LIBGIF | 423 | LIBX= $(LIBXMENU) $(X11_LDFLAGS) $(LIBXT) LIB_X11_LIB LIBX11_MACHINE LIBX11_SYSTEM LIBXPM LIBTIFF LIBJPEG LIBPNG LIBGIF |
| 424 | #else /* not HAVE_X11 */ | 424 | #else /* not HAVE_X11 */ |
| 425 | LIBX= $(LIBXMENU) LD_SWITCH_X_SITE -lX10 LIBX10_MACHINE LIBX10_SYSTEM | 425 | LIBX= $(LIBXMENU) LD_SWITCH_X_SITE -lX10 LIBX10_MACHINE LIBX10_SYSTEM |
| 426 | #endif /* not HAVE_X11 */ | 426 | #endif /* not HAVE_X11 */ |
| @@ -1146,7 +1146,7 @@ xselect.o: xselect.c dispextern.h frame.h xterm.h blockinput.h charset.h \ | |||
| 1146 | xrdb.o: xrdb.c $(config_h) epaths.h | 1146 | xrdb.o: xrdb.c $(config_h) epaths.h |
| 1147 | hftctl.o: hftctl.c $(config_h) | 1147 | hftctl.o: hftctl.c $(config_h) |
| 1148 | sound.o: sound.c dispextern.h $(config_h) | 1148 | sound.o: sound.c dispextern.h $(config_h) |
| 1149 | atimer.o: atimer.h systime.h $(config_h) | 1149 | atimer.o: atimer.c atimer.h systime.h $(config_h) |
| 1150 | 1150 | ||
| 1151 | /* The files of Lisp proper */ | 1151 | /* The files of Lisp proper */ |
| 1152 | 1152 | ||