Changeset 1180


Ignore:
Timestamp:
Apr 9, 2007 5:13:10 PM (17 years ago)
Author:
bennylp
Message:

Initial Makefiles for the third_party components

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  
    33# This will export CC_NAME, MACHINE_NAME, OS_NAME, and HOST_NAME variables. 
    44# 
    5 include ../../build.mak 
     5include $(PJDIR)/build.mak 
    66 
    77# 
    88# Include global compiler specific definitions 
    99# 
    10 include ../../build/cc-$(CC_NAME).mak 
     10include $(PJDIR)/build/cc-$(CC_NAME).mak 
    1111 
    1212# 
     
    2020# Include global machine specific definitions 
    2121# 
    22 include ../../build/m-$(MACHINE_NAME).mak 
     22include $(PJDIR)/build/m-$(MACHINE_NAME).mak 
    2323-include m-$(MACHINE_NAME).mak 
    2424 
     
    2626# Include target OS specific definitions 
    2727# 
    28 include ../../build/os-$(OS_NAME).mak 
     28include $(PJDIR)/build/os-$(OS_NAME).mak 
    2929 
    3030# 
     
    3838# Include host specific definitions 
    3939# 
    40 include ../../build/host-$(HOST_NAME).mak 
     40include $(PJDIR)/build/host-$(HOST_NAME).mak 
    4141 
    4242# 
     
    5050# Include global user configuration, if any 
    5151# 
    52 -include ../../user.mak 
     52-include $(PJDIR)/user.mak 
    5353 
    5454 
  • pjproject/branches/split-3rd-party/build/rules.mak

    r477 r1180  
     1ifeq ($(LIBDIR),) 
    12LIBDIR = ../lib 
     3endif 
     4ifeq ($(BINDIR),) 
    25BINDIR = ../bin 
     6endif 
    37 
    48# 
     
    7276 
    7377$(LIB): $(LIBDIR) $(OBJDIRS) $(OBJS) $($(APP)_EXTRA_DEP) 
    74         $(AR)$(LIB) $(OBJS) 
     78        $(AR) $(LIB) $(OBJS) 
    7579        $(RANLIB) $(LIB) 
    7680 
  • pjproject/branches/split-3rd-party/third_party/build/gsm

    • Property svn:ignore
      •  

        old new  
        11*.user 
         2.* 
  • pjproject/branches/split-3rd-party/third_party/build/ilbc

    • Property svn:ignore
      •  

        old new  
        11*.user 
         2.* 
  • pjproject/branches/split-3rd-party/third_party/build/resample

    • Property svn:ignore
      •  

        old new  
        11*.user 
         2.* 
  • pjproject/branches/split-3rd-party/third_party/build/speex

    • Property svn:ignore
      •  

        old new  
        11*.user 
         2.* 
  • pjproject/branches/split-3rd-party/third_party/build/speex/config.h

    r1168 r1180  
    1 #include <pj/config.h> 
     1#include <pj/types.h> 
    22 
    33/* Check if we need to use the fixed point version */ 
     
    1010    (defined(PJ_WIN32_WINCE) && PJ_WIN32_WINCE != 0)  
    1111#   include "../../speex/win32/config.h" 
     12#else 
     13#define inline __inline 
     14#define restrict 
     15#include "misc.h" 
    1216#endif 
    1317 
  • pjproject/branches/split-3rd-party/third_party/gsm/inc/config.h

    r1168 r1180  
    1010#define CONFIG_H 
    1111 
    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?       */ 
    1414 
    1515#define HAS_STDLIB_H    1               /* /usr/include/stdlib.h        */ 
     
    2323#define HAS_FCHOWN      1               /* fchown syscall               */ 
    2424#define HAS_CHOWN       1               /* chown syscall                */ 
    25 /*efine HAS__FSETMODE   1               /* _fsetmode -- set file mode   */ 
     25/*efine HAS__FSETMODE   1               * _fsetmode -- set file mode    */ 
    2626 
    2727#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        */ 
    2929 
    3030#define HAS_UNISTD_H    1               /* /usr/include/unistd.h        */ 
    3131#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 */ 
    3333#define HAS_UTIME_H     1               /* UTIME header file            */ 
    3434#define HAS_UTIMBUF     1               /* struct utimbuf               */ 
    35 /*efine HAS_UTIMEUSEC   1               /* microseconds in utimbuf?     */ 
     35/*efine HAS_UTIMEUSEC   1               * microseconds in utimbuf?      */ 
    3636 
    3737#endif  /* CONFIG_H */ 
Note: See TracChangeset for help on using the changeset viewer.