comparison src/Makefile.am @ 10245:c143a3fac58d

[gaim-migrate @ 11385] Binary relocation, step one. I had a fairly long commit message, and cvs ate it and said Read from remote host cvs.sourceforge.net: Connection reset by peer I'm displeased. This is just method one, method two to follow tomorrow after I add a way to register a fallback and try to push it upstream. That way I don't have to put method 2 inside prefix.c. As for as core/ui split goes, they can either each have their own copy after the divorce is final, or the UI can use the core's. It'll work either way, since #1 finds location of the caller, and #2 doesn't work on libraries anyway. That's one advantage I forgot to mention, btw, that #1 will let a library find its own location. So, I'm sure something isn't quite right and someone will want to fix it. So they can fix it while i implement phase two. Which won't take long at all, but the autopackage guy is in bed, and I should be too. committer: Tailor Script <tailor@pidgin.im>
author Tim Ringenbach <marv@pidgin.im>
date Tue, 23 Nov 2004 05:53:59 +0000
parents 37c411c8cde3
children 0cf2a686266e
comparison
equal deleted inserted replaced
10244:13cb42ebb537 10245:c143a3fac58d
79 network.c \ 79 network.c \
80 notify.c \ 80 notify.c \
81 plugin.c \ 81 plugin.c \
82 pluginpref.c \ 82 pluginpref.c \
83 pounce.c \ 83 pounce.c \
84 prefix.c \
85 prefs.c \
84 privacy.c \ 86 privacy.c \
85 proxy.c \ 87 proxy.c \
86 prefs.c \
87 prpl.c \ 88 prpl.c \
88 request.c \ 89 request.c \
89 roomlist.c \ 90 roomlist.c \
90 server.c \ 91 server.c \
91 sha.c \ 92 sha.c \
117 network.h \ 118 network.h \
118 notify.h \ 119 notify.h \
119 plugin.h \ 120 plugin.h \
120 pluginpref.h \ 121 pluginpref.h \
121 pounce.h \ 122 pounce.h \
123 prefix.h
124 prefs.h \
122 privacy.h \ 125 privacy.h \
123 proxy.h \ 126 proxy.h \
124 prefs.h \
125 prpl.h \ 127 prpl.h \
126 request.h \ 128 request.h \
127 roomlist.h \ 129 roomlist.h \
128 server.h \ 130 server.h \
129 sha.h \ 131 sha.h \
223 $(INTLLIBS) \ 225 $(INTLLIBS) \
224 $(GTKSPELL_LIBS) \ 226 $(GTKSPELL_LIBS) \
225 $(STARTUP_NOTIFICATION_LIBS) 227 $(STARTUP_NOTIFICATION_LIBS)
226 228
227 gaim_remote_SOURCES = \ 229 gaim_remote_SOURCES = \
228 gaim-remote.c 230 gaim-remote.c \
231 prefix.c \
232 prefix.h
229 233
230 gaim_remote_DEPENDENCIES = @LIBOBJS@ 234 gaim_remote_DEPENDENCIES = @LIBOBJS@
231 gaim_remote_LDADD = \ 235 gaim_remote_LDADD = \
232 @LIBOBJS@ $(GLIB_LIBS) $(INTLLIBS) \ 236 @LIBOBJS@ $(GLIB_LIBS) $(INTLLIBS) \
233 $(top_builddir)/plugins/gaim-remote/libgaim-remote.la 237 $(top_builddir)/plugins/gaim-remote/libgaim-remote.la
234 238
235 AM_CPPFLAGS = \ 239 AM_CPPFLAGS = \
240 -DBR_PTHREADS=0 \
236 -DDATADIR=\"$(datadir)\" \ 241 -DDATADIR=\"$(datadir)\" \
237 -DLIBDIR=\"$(libdir)/gaim/\" \ 242 -DLIBDIR=\"$(libdir)/gaim/\" \
238 -DLOCALEDIR=\"$(datadir)/locale\" \ 243 -DLOCALEDIR=\"$(datadir)/locale\" \
239 -DSYSCONFDIR=\"$(sysconfdir)\" \ 244 -DSYSCONFDIR=\"$(sysconfdir)\" \
240 -I$(top_srcdir)/plugins \ 245 -I$(top_srcdir)/plugins \