Changeset 1c96ee2 in freewrt


Ignore:
Timestamp:
Jan 10, 2007, 3:26:57 AM (19 years ago)
Author:
Phil Sutter <n0-1@…>
Children:
72cf3a0
Parents:
0088205
Message:

fixing this due to tg's hint

git-svn-id: svn://www.freewrt.org/branches/common-adk@1541 afb5a338-a214-0410-bd46-81f09a774fd1

File:
1 edited

Legend:

Unmodified
Added
Removed
  • package/vncrepeater/patches/patch-Makefile

    r0088205 r1c96ee2  
    11$FreeWRT$
    2 change CC, CFLAGS and LDFLAGS to be tunable via environment variables
     2change CXX, CFLAGS and LDFLAGS to be tunable via environment variables
    33--- vncrepeater-0.12.orig/Makefile      2006-03-31 09:40:14.000000000 +0200
    44+++ vncrepeater-0.12/Makefile   2007-01-10 02:29:00.000000000 +0100
     
    88 repeater: repeater.o repeaterproc.o openbsd_stringfuncs.o iniparser.o readini.o
    99-       g++ $(CFLAGS) -o repeater repeater.o repeaterproc.o openbsd_stringfuncs.o iniparser.o readini.o
    10 +       $(CC) $(CFLAGS) $(LDFLAGS) -o repeater repeater.o repeaterproc.o openbsd_stringfuncs.o iniparser.o readini.o -nodefaultlibs
     10+       $(CXX) $(CFLAGS) $(LDFLAGS) -o repeater repeater.o repeaterproc.o openbsd_stringfuncs.o iniparser.o readini.o -nodefaultlibs
    1111 
    1212 repeater.o: repeater.cpp
    1313-       g++ $(CFLAGS) -c repeater.cpp
    14 +       $(CC) $(CFLAGS) -c repeater.cpp
     14+       $(CXX) $(CFLAGS) -c repeater.cpp
    1515 
    1616 repeaterproc.o: repeaterproc.cpp
    1717-       g++ $(CFLAGS) -c repeaterproc.cpp
    18 +       $(CC) $(CFLAGS) -c repeaterproc.cpp
     18+       $(CXX) $(CFLAGS) -c repeaterproc.cpp
    1919 
    2020 openbsd_stringfuncs.o: openbsd_stringfuncs.cpp
    2121-       g++ $(CFLAGS) -c openbsd_stringfuncs.cpp
    22 +       $(CC) $(CFLAGS) -c openbsd_stringfuncs.cpp
     22+       $(CXX) $(CFLAGS) -c openbsd_stringfuncs.cpp
    2323 
    2424 iniparser.o: iniparser.cpp
    2525-       g++ $(CFLAGS) -c iniparser.cpp
    26 +       $(CC) $(CFLAGS) -c iniparser.cpp
     26+       $(CXX) $(CFLAGS) -c iniparser.cpp
    2727 
    2828 readini.o: readini.cpp
    2929-       g++ $(CFLAGS) -c readini.cpp
    30 +       $(CC) $(CFLAGS) -c readini.cpp
     30+       $(CXX) $(CFLAGS) -c readini.cpp
    3131 
    3232 clean:
Note: See TracChangeset for help on using the changeset viewer.