|
|
Error when doing make install
Edit the Makefile and make these changes (around line 24):
install: nullidentd
+ mkdir -p $(INSTALL)
rm -f $(INSTALL)/nullidentd
cp nullidentd $(INSTALL)/nullidentd
- chown root.root $(INSTALL)/nullidentd
+ chown root.admin $(INSTALL)/nullidentd
chmod a-rw $(INSTALL)/nullidentd
chmod a+x $(INSTALL)/nullidentd
For those who've never seen a patchfile before, the line with the - is the line to look for, the + is what to change it to... don't actually put the -/+ at the beginning of the line. Basically, add the 'mkdir -p' command and change 'root.root' to 'root.admin'. Keep the lines prefixed with whitespace or a tab.
You might also want to make a more optimized build (also a change to the Makefile)
- gcc -O2 -o nullidentd nullidentd.c
+ gcc -O3 -prebind -arch ppc -Wl,-no_arch_warnings -o nullidentd nullidentd.c
Note that you'll also want to open up port 113 if you use any firewall software (Apple's or otherwise).
Error when doing make install
Oops... |
SearchFrom our Sponsor...Latest Mountain Lion HintsWhat's New:HintsNo new hintsComments last 2 daysLinks last 2 weeksNo recent new linksWhat's New in the Forums?
Hints by TopicNews from Macworld
From Our Sponsors |
|
Copyright © 2014 IDG Consumer & SMB (Privacy Policy) Contact Us All trademarks and copyrights on this page are owned by their respective owners. |
Visit other IDG sites: |
|
|
|
Created this page in 0.08 seconds |
|