473,657 Members | 2,531 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

compiling problem about *** missing separator

Hi, all:

I have a RedHat 9 with gcc version 3.4.1, and I want to compile siph323csgw
with ¡§make siph323csgw¡¨.

But when I compile siph323csgw, I get this message:

configure: creating ./config.status
config.status: creating make/ptbuildopts.mak
config.status: creating make/ptlib-config
config.status: creating Makefile
config.status: creating include/ptbuildopts.h
config.status: include/ptbuildopts.h is unchanged
make[3]: Entering directory
/home/stephan/work/vocal/contrib/Equivalence.Lin ux.i686/pwlib'
make[4]: Entering directory
/home/stephan/work/vocal/contrib/Equivalence.Lin ux.i686/pwlib'
set -e; for i in
/home/stephan/work/vocal/contrib/Equivalence.Lin ux.i686/pwlib; do make -C $i
debugdepend debug; done
make[5]: Entering directory
/home/stephan/work/vocal/contrib/Equivalence.Lin ux.i686/pwlib'
Created dependencies.
set -e; make -C src/ptlib/unix debugdepend; make -C tools/asnparser
debugdepend;
make[6]: Entering directory
/home/stephan/work/vocal/contrib/Equivalence.Lin ux.i686/pwlib/src/ptlib/uni
x'
/home/stephan/work/vocal/contrib/Equivalence.Lin ux.i686/pwlib/lib/obj_linux_
x86_d/asner.dep:1: *** missing separator. Stop.
make[6]: Leaving directory
/home/stephan/work/vocal/contrib/Equivalence.Lin ux.i686/pwlib/src/ptlib/uni
x'
make[5]: *** [debugdepend] Error 2
make[5]: Leaving directory
/home/stephan/work/vocal/contrib/Equivalence.Lin ux.i686/pwlib'
make[4]: *** [libs] Error 2
make[4]: Leaving directory
/home/stephan/work/vocal/contrib/Equivalence.Lin ux.i686/pwlib'
make[3]: *** [debuglibs] Error 2
make[3]: Leaving directory
/home/stephan/work/vocal/contrib/Equivalence.Lin ux.i686/pwlib'
make[2]: *** [pwlib] Error 2
make[2]: Leaving directory
/home/stephan/work/vocal/contrib/Equivalence.Lin ux.i686'
make[1]: *** [Equivalence] Error 2
make[1]: Leaving directory /home/stephan/work/vocal/contrib'
make: *** [contrib_equiv] Error 2

Is there somebody here had tried this?? Or know what to do??
Any opinion is very much appreciated!!

Best Regards
Stephan Chiu


--
Nov 14 '05 #1
4 11711
The most probable answer to your question is that the makefile
is missing a tabulator instead of spaces.

You are the second one to ask this in the space of two weeks.

Myself, I had that horrible bug when I started UNIX.

In Makefiles, at the beginning of each line must be a tab
char, and not a space char.

Nov 14 '05 #2
cm****@csie.nct u.edu.tw wrote:
I have a RedHat 9 with gcc version 3.4.1, and I want to compile siph323csgw
with ¡§make siph323csgw¡¨.
This is no C question at all but about how to build a certain
application, so you can't expect any help here. Please ask
this in some kind of Linux group, preferably one with at
least a bit of relation to the application your trying to
build. Or, better, ask the authors of the program.

<OT>
Just to give you more of an idea why it's off-topic here:
/home/stephan/work/vocal/contrib/Equivalence.Lin ux.i686/pwlib/lib/obj_linux_x86_d/asner.dep:1: *** missing separator. Stop.


The error message looks a lot like one that you often get from the
make utility (which has nothing to do with C). But since it's an
error on line 1 and the file is called "asner.dep" , which would be
rather unusual for a Makefile, it looks more as if make gets feed
a non-Makefile. Guessing why this happens is impossible without
seeing how things are done in that project (which seems to involve
the "configure" utility, another tool that has no relation to C).
</OT>
Regards, Jens
--
\ Jens Thoms Toerring ___ Je***********@p hysik.fu-berlin.de
\______________ ____________ http://www.toerring.de
Nov 14 '05 #3
jacob navia wrote:

The most probable answer to your question is that the makefile
is missing a tabulator instead of spaces.

You are the second one to ask this in the space of two weeks.

Myself, I had that horrible bug when I started UNIX.

In Makefiles, at the beginning of each line must be a tab
char, and not a space char.


Careful, this is not necessarily accurate, and illustrates the
danger of answering off-topic questions here. The tab is only
required for the 'action' lines, and marks them as non-dependancy
lines. In most make programs. Unless somebody changed it. I.e.
the OP should find a group dealing with his system.

--
"I'm a war president. I make decisions here in the Oval Office
in foreign policy matters with war on my mind." - Bush.
"Churchill and Bush can both be considered wartime leaders, just
as Secretariat and Mr Ed were both horses." - James Rhodes.
Nov 14 '05 #4
CBFalconer <cb********@yah oo.com> spoke thus:
Careful, this is not necessarily accurate, and illustrates the
danger of answering off-topic questions here. The tab is only
required for the 'action' lines, and marks them as non-dependancy
lines. In most make programs. Unless somebody changed it. I.e.
the OP should find a group dealing with his system.


<ot>Or, if that system is *nix, buy the excellent O'Reilly book
"Managing Projects with make".</ot>

--
Christopher Benson-Manica | I *should* know what I'm talking about - if I
ataru(at)cybers pace.org | don't, I need to know. Flames welcome.
Nov 14 '05 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
2855
by: mazu | last post by:
I get errors about QAssistantClient while compiling PyQt 3.7, on my debian woody with Qt 3.1.2. Here is compiler message: cd qt && /usr/bin/make -f Makefile make: Entering directory `/Downloads/KDE - libs/PyQt-x11-gpl-3.7/qt' g++ -c -pipe -w -O2 -D_REENTRANT -fPIC -DSIP_MAKE_MODULE_DLL -DQT_NO_DEBUG -DQT_THREAD_SUPPORT -I/usr/share/qt3/mkspecs/default -I. -I. -I/usr/include/python2.1 -I/usr/share/qt3/include -o qtcmodule.o...
24
1704
by: Joonshik Kim | last post by:
Could any body help me ? I'm trying to compile a vocoder program in school's HP-unix machine. when I try following command. make -f CODER.MAK (CODER.MAK was included in the vocoder source code..) following message appears.
4
11346
by: Aaron Queenan | last post by:
When I build a C++ library to .NET using the managed C++ compiler, I get the following error message: Linking... LINK : error LNK2020: unresolved token (0A000005) _CrtDbgReport LINK : error LNK2020: unresolved token (0A000007) memset LINK : error LNK2020: unresolved token (0A000008) free LINK : error LNK2020: unresolved token (0A00000A) atexit LINK : error LNK2020: unresolved token (0A000028) wcscpy LINK : error LNK2020: unresolved...
2
2117
by: Erik | last post by:
Hi Everyone, I'm having real problems compiling some source for eVC4++. The errors I am getting are below: It all seems to be centred around winsock. If I move the afsock.h reference to before my other includes then I get lots of errors like C2011: 'fd_set' : 'struct' type redefinition warning C4005: 'FD_CLR' : macro redefinition which I understand are due to the fact that windows.h is being included in another header file as well as...
1
3060
by: Riaan | last post by:
I am compiling my app (including CODEBASE database headers) but as soon as i compile it gives me the following errors : c:\Program Files\Microsoft Visual Studio\VC98\Include\UTILITY(81) : warning C4346: '_It::iterator_category' : dependent name is not a type prefix with 'typename' to indicate a type c:\Program Files\Microsoft Visual Studio\VC98\Include\UTILITY(84) : see reference to class template instantiation...
8
2197
by: WebSnozz | last post by:
I have an application written in C that does a lot of low level stuff. It does a lot of things like casting from void*'s. I want to create a new GUI for it in either C# or MC++, but reuse the existing code. The options I've considered so far: 1. Create a new MC++ GUI project and add the *.c files to them and mark them with pragma unamanged. However, the /clr option does not compile *.c files, so I rename them to *.cpp, and now they...
2
1604
by: stevenruiz | last post by:
Hi Everyone, The problem that I have involves compiling two files. I've received this error before and I understood that I was missing the correct library. The error is as follows: ld: Unresolved: String::getline(std::basic_istream <char, std::char_traits<char>&>, const &String String)
2
11274
by: renagade629 | last post by:
Can anybody help me understand what i'm doing wrong or what I'm missing? Is there anyother good and commendable C++ program I can use (free) from the internet like Dev C++? I'm having trouble doing basic compiling on this new Dev C++, when i try to print something like: #include<iostream.h> using namespace std; int main () { cout << "Hello to the world" << endl; system("PAUSE") return 0;
1
3921
by: jon2211 | last post by:
I tried to compile some code with #include <shellapi.h. I am linking shell32.lib. I am not trying to use ShellExecute() but right now just getting the code to compile with the header file an issue. I am using Visual Basic 2005 (express). I got shellapi.h from the platform sdk. Thanks for any help. here is my error log 1>------ Build started: Project: openFile, Configuration: Debug Win32 ------
0
8420
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
8842
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
8740
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
8617
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
7353
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
4173
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
4330
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
2
1970
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
2
1733
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.