Changeset 13517
- Timestamp:
- Sep 22, 2012, 10:23:04 PM (10 years ago)
- Location:
- trunk
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/configure.ac
r13516 r13517 7 7 m4_define([peer_id_prefix],[-TR261Z-]) 8 8 9 AC_INIT([transmission], 10 [user_agent_prefix], 11 [http://trac.transmissionbt.com/newticket]) 9 AC_INIT([transmission],[user_agent_prefix],[http://trac.transmissionbt.com/newticket]) 12 10 AC_SUBST(USERAGENT_PREFIX,[user_agent_prefix]) 13 11 AC_SUBST(PEERID_PREFIX,[peer_id_prefix]) … … 20 18 AC_CONFIG_SRCDIR(libtransmission/transmission.h) 21 19 AM_INIT_AUTOMAKE([1.9 tar-pax]) 22 AC_PROG_LIBTOOL 20 LT_INIT 23 21 24 22 if test m4_substr(peer_id_prefix,6,1) = "0"; then … … 239 237 LIBS="-lminiupnpc" 240 238 # See if the OS has its miniupnp 1.5 installed 241 AC_ TRY_LINK([239 AC_LINK_IFELSE([AC_LANG_PROGRAM([[ 242 240 #include <stdlib.h> 243 241 #include <miniupnpc/miniupnpc.h> 244 242 #include <miniupnpc/upnpcommands.h> 245 ] ,[243 ]], [[ 246 244 struct UPNPDev * devlist; 247 245 struct UPNPUrls urls; … … 255 253 UPNP_GetSpecificPortMappingEntry( urls.controlURL, data.first.servicetype, 256 254 portStr, "TCP", intClient, intPort ); 257 ] ,[255 ]])],[ 258 256 AC_DEFINE(HAVE_MINIUPNP_15, 1, [Define to 1 if you have miniupnpc version 1.5]) 259 upnp_version="1.5"] )257 upnp_version="1.5"],[]) 260 258 261 259 # See if the OS has its miniupnp 1.6 installed 262 AC_ TRY_LINK([260 AC_LINK_IFELSE([AC_LANG_PROGRAM([[ 263 261 #include <stdlib.h> 264 262 #include <errno.h> 265 263 #include <miniupnpc/miniupnpc.h> 266 264 #include <miniupnpc/upnpcommands.h> 267 ] ,[265 ]], [[ 268 266 struct UPNPDev * devlist; 269 267 struct UPNPUrls urls; … … 277 275 UPNP_GetSpecificPortMappingEntry( urls.controlURL, data.first.servicetype, 278 276 portStr, "TCP", intClient, intPort, NULL, NULL, NULL ); 279 ] ,[277 ]])],[ 280 278 AC_DEFINE(HAVE_MINIUPNP_16, 1, [Define to 1 if you have miniupnpc version 1.6]) 281 upnp_version="1.6"] )279 upnp_version="1.6"],[]) 282 280 283 281 # ... and the results of our tests … … 343 341 [have_gtk=yes], 344 342 [have_gtk=no]) 345 AC_ARG_WITH([gtk], A C_HELP_STRING([--with-gtk],[with Gtk]),343 AC_ARG_WITH([gtk], AS_HELP_STRING([--with-gtk],[with Gtk]), 346 344 [with_gtk=$withval], 347 345 [with_gtk=$have_gtk]) -
trunk/gtk/Makefile.am
r13503 r13517 111 111 112 112 transmission-resources.c: transmission.gresource.xml $(UI_FILES) 113 glib-compile-resources --target=$@ --sourcedir=$(srcdir) \ 113 glib-compile-resources --target=$@ --sourcedir=$(srcdir) \ 114 114 --generate-source --c-name transmission $< 115 115 116 116 transmission-resources.h: transmission.gresource.xml 117 glib-compile-resources --target=$@ --sourcedir=$(srcdir) \ 117 glib-compile-resources --target=$@ --sourcedir=$(srcdir) \ 118 118 --generate-header --c-name transmission $< 119 119 -
trunk/macosx/Makefile.am
r13515 r13517 172 172 all: 173 173 @(cd .. && xcodebuild -alltargets -activeconfiguration | grep -v "^$$") 174 clean :174 clean-local: 175 175 @(cd .. && xcodebuild -alltargets -activeconfiguration clean | grep -v "^$$") 176 176 -
trunk/third-party/Makefile.am
r13199 r13517 18 18 macosx-libevent-config.h \ 19 19 macosx-libevent-event-config.h 20 21 install:22 23 uninstall:
Note: See TracChangeset
for help on using the changeset viewer.