« Empfohlene Artikel 09.11.2008 Empfohlene Artikel 11.11.2008 »
Never forget to call “make clean”
10. November 2008, 14:05
Today I realized how important it is, to call make clean. The first step was to call ./configure without any arguments. After finding all options I wanna use, I called configure with these options, then make, make test and make install. But apache told me only:
Cannot load /usr/lib/apache2/libphp5.so into server: /usr/lib/apache2/libphp5.so: undefined symbol: php_stream_context_get_option
So what to do? Google hasn’t a good answer (I hope my one will be). After a time of try and error I found a way wich works: make clean (and configure, make, make test, make install again). Very simple!