Changeset 1180
- Timestamp:
- Apr 9, 2007 5:13:10 PM (18 years ago)
- Location:
- pjproject/branches/split-3rd-party
- Files:
-
- 7 added
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/branches/split-3rd-party/build/common.mak
r65 r1180 3 3 # This will export CC_NAME, MACHINE_NAME, OS_NAME, and HOST_NAME variables. 4 4 # 5 include ../../build.mak5 include $(PJDIR)/build.mak 6 6 7 7 # 8 8 # Include global compiler specific definitions 9 9 # 10 include ../../build/cc-$(CC_NAME).mak10 include $(PJDIR)/build/cc-$(CC_NAME).mak 11 11 12 12 # … … 20 20 # Include global machine specific definitions 21 21 # 22 include ../../build/m-$(MACHINE_NAME).mak22 include $(PJDIR)/build/m-$(MACHINE_NAME).mak 23 23 -include m-$(MACHINE_NAME).mak 24 24 … … 26 26 # Include target OS specific definitions 27 27 # 28 include ../../build/os-$(OS_NAME).mak28 include $(PJDIR)/build/os-$(OS_NAME).mak 29 29 30 30 # … … 38 38 # Include host specific definitions 39 39 # 40 include ../../build/host-$(HOST_NAME).mak40 include $(PJDIR)/build/host-$(HOST_NAME).mak 41 41 42 42 # … … 50 50 # Include global user configuration, if any 51 51 # 52 -include ../../user.mak52 -include $(PJDIR)/user.mak 53 53 54 54 -
pjproject/branches/split-3rd-party/build/rules.mak
r477 r1180 1 ifeq ($(LIBDIR),) 1 2 LIBDIR = ../lib 3 endif 4 ifeq ($(BINDIR),) 2 5 BINDIR = ../bin 6 endif 3 7 4 8 # … … 72 76 73 77 $(LIB): $(LIBDIR) $(OBJDIRS) $(OBJS) $($(APP)_EXTRA_DEP) 74 $(AR) $(LIB) $(OBJS)78 $(AR) $(LIB) $(OBJS) 75 79 $(RANLIB) $(LIB) 76 80 -
pjproject/branches/split-3rd-party/third_party/build/gsm
- Property svn:ignore
-
old new 1 1 *.user 2 .*
-
- Property svn:ignore
-
pjproject/branches/split-3rd-party/third_party/build/ilbc
- Property svn:ignore
-
old new 1 1 *.user 2 .*
-
- Property svn:ignore
-
pjproject/branches/split-3rd-party/third_party/build/resample
- Property svn:ignore
-
old new 1 1 *.user 2 .*
-
- Property svn:ignore
-
pjproject/branches/split-3rd-party/third_party/build/speex
- Property svn:ignore
-
old new 1 1 *.user 2 .*
-
- Property svn:ignore
-
pjproject/branches/split-3rd-party/third_party/build/speex/config.h
r1168 r1180 1 #include <pj/ config.h>1 #include <pj/types.h> 2 2 3 3 /* Check if we need to use the fixed point version */ … … 10 10 (defined(PJ_WIN32_WINCE) && PJ_WIN32_WINCE != 0) 11 11 # include "../../speex/win32/config.h" 12 #else 13 #define inline __inline 14 #define restrict 15 #include "misc.h" 12 16 #endif 13 17 -
pjproject/branches/split-3rd-party/third_party/gsm/inc/config.h
r1168 r1180 10 10 #define CONFIG_H 11 11 12 /*efine SIGHANDLER_T int /* signal handlers are void */13 /*efine HAS_SYSV_SIGNAL 1 /* sigs not blocked/reset? */12 /*efine SIGHANDLER_T int * signal handlers are void */ 13 /*efine HAS_SYSV_SIGNAL 1 * sigs not blocked/reset? */ 14 14 15 15 #define HAS_STDLIB_H 1 /* /usr/include/stdlib.h */ … … 23 23 #define HAS_FCHOWN 1 /* fchown syscall */ 24 24 #define HAS_CHOWN 1 /* chown syscall */ 25 /*efine HAS__FSETMODE 1 /* _fsetmode -- set file mode */25 /*efine HAS__FSETMODE 1 * _fsetmode -- set file mode */ 26 26 27 27 #define HAS_STRING_H 1 /* /usr/include/string.h */ 28 /*efine HAS_STRINGS_H 1 /* /usr/include/strings.h */28 /*efine HAS_STRINGS_H 1 * /usr/include/strings.h */ 29 29 30 30 #define HAS_UNISTD_H 1 /* /usr/include/unistd.h */ 31 31 #define HAS_UTIME 1 /* POSIX utime(path, times) */ 32 /*efine HAS_UTIMES 1 /* use utimes() syscall instead */32 /*efine HAS_UTIMES 1 * use utimes() syscall instead */ 33 33 #define HAS_UTIME_H 1 /* UTIME header file */ 34 34 #define HAS_UTIMBUF 1 /* struct utimbuf */ 35 /*efine HAS_UTIMEUSEC 1 /* microseconds in utimbuf? */35 /*efine HAS_UTIMEUSEC 1 * microseconds in utimbuf? */ 36 36 37 37 #endif /* CONFIG_H */
Note: See TracChangeset
for help on using the changeset viewer.