|
|
Error when doing make install
I get the following error when doing the make install:
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...
Error when doing make install
Apple set up group 'wheel' instead of group 'root'. If you go in and look at the installed nullidentd file with ls -l you will see that it is owned by root and group wheel. So ignore the error, it is set up fine. |
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 |
|