Sponsored Content
Full Discussion: Leaving directory Error
Top Forums Shell Programming and Scripting Leaving directory Error Post 302956905 by sea on Monday 5th of October 2015 08:07:46 AM
Old 10-05-2015
The first issues rises at:
Code:
| #include <ac_nonexistent.h>
configure:3863: result: gcc -E
configure:3892: gcc -E  conftest.c
configure:3898: $? = 0
configure:3936: gcc -E  conftest.c
conftest.c:12:28: fatal error: ac_nonexistent.h: No such file or directory
 #include <ac_nonexistent.h>
                            ^
compilation terminated.
configure:3942: $? = 1
configure: failed program was:
| /* confdefs.h.  */
| #define PACKAGE_NAME "miRanda"
| #define PACKAGE_TARNAME "miranda"
| #define PACKAGE_VERSION "3.3a"
| #define PACKAGE_STRING "miRanda 3.3a"
| #define PACKAGE_BUGREPORT "miranda {at} cbio.mskcc.org"
| #define PACKAGE "miranda"
| #define VERSION "3.3a"
| #define UNUSED __attribute__ ((unused))
| #define HAVE_LIBM 1
| /* end confdefs.h.  */
| #include <ac_nonexistent.h>

There are multiple of this kind, i assume causes be the first issue:
Code:
conftest.c:55:6: warning: conflicting types for built-in function 'memset'
 char memset ();
      ^
configure:5889: $? = 0
configure:5896: test -z "$ac_c_werror_flag" || test ! -s conftest.err
configure:5899: $? = 0
configure:5906: test -s conftest
configure:5909: $? = 0
configure:5923: result: yes
configure:5827: checking for sqrt
configure:5883: gcc -o conftest -g -O2   conftest.c -lm  >&5
conftest.c:56:6: warning: conflicting types for built-in function 'sqrt'
 char sqrt ();
      ^
configure:5889: $? = 0
configure:5896: test -z "$ac_c_werror_flag" || test ! -s conftest.err
configure:5899: $? = 0
configure:5906: test -s conftest
configure:5909: $? = 0
configure:5923: result: yes
configure:5827: checking for strchr
configure:5883: gcc -o conftest -g -O2   conftest.c -lm  >&5
conftest.c:57:6: warning: conflicting types for built-in function 'strchr'
 char strchr ();
      ^

Are you packaging (as in writing the autotools/makefiles) this or just trying to compile it?
Because to me, experiences - but still novice, it looks like there is an issue with either the code or the makefiles, tending to blame the code.

If you just want to compile this, have you read the README and INSTALL files?
If you did, and followed each and every step, send the logfile to one of the devs.

If you're about to package this, you might have missed to addd the required files to the Makefile in that dir, and/or missed to add it in the makefile of the top-level-dir of the project.

hth
 

8 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Searching a file withoug leaving home directory!!

hello there ! I am in my current working directory, and i want search a file in "dev" directory which is under root(/), but i donot want leave my current working directory. is it possible to find file like that ? let us say i am in /home/bin/user/malik/abid directory and i want find a file... (2 Replies)
Discussion started by: abidmalik
2 Replies

2. Solaris

leaving ALOM mode

Some netra 240 machines went into ALOM mode, and when I issue the command; sc> console it got stuck, does it mean Solaris OS had crashed ? or what can I do to reboot,because reboot is not starting? And advice ? (3 Replies)
Discussion started by: xramm
3 Replies

3. UNIX for Dummies Questions & Answers

Delete all rows but leaving first and last ones

Hello, Merry Christmas to all! I wish you the best for these holidays and the best for the next year 2011. I'd like your help please, I need to delete all the rows in the third column of my file, but without touching nor changing the first and last value position, this is an example of my... (2 Replies)
Discussion started by: Gery
2 Replies

4. Shell Programming and Scripting

Leaving for loop on condition

hi all, i have a problem...no dream :-) i want to scan a file i use the loop famous while read line do do < myfile but this scan must finish when find the another string . How can i do it? best regards for all. Francesco Please use descriptive subjects. "script." doesn't tell... (5 Replies)
Discussion started by: FrancescoIt
5 Replies

5. Shell Programming and Scripting

Leaving last 30 lines

If we want to display lines from file leaving last 30 lines. i dont know the count of lines in file (14 Replies)
Discussion started by: mirwasim
14 Replies

6. Red Hat

How to compare file leaving certain filelds?

How to compare two files leaving certain fields, using diff command the entire file is being compared. Can any one please help. (5 Replies)
Discussion started by: ramsavi
5 Replies

7. Web Development

Directory index forbidden by Options directive error on specific directory with indexing disabled

I am seeing the following error appear numerous times in my Apache error log: I have my Apache config configured as below, so I would expect indexing not to occur on this directory as it falls under the parent /web directory. Strangely all the IP address, including this example, all... (5 Replies)
Discussion started by: crmpicco
5 Replies

8. Shell Programming and Scripting

Leaving space inside sed

Hi Gurus, I have 2 files File1 : veg apple ap pl le end veg orange or an ge end File2: (2 Replies)
Discussion started by: jayadanabalan
2 Replies
DH_AUTO_CONFIGURE(1)						     Debhelper						      DH_AUTO_CONFIGURE(1)

NAME
dh_auto_configure - automatically configure a package prior to building SYNOPSIS
dh_auto_configure [buildsystemoptions] [debhelperoptions] [--params] DESCRIPTION
dh_auto_configure is a debhelper program that tries to automatically configure a package prior to building. It does so by running the appropriate command for the build system it detects the package uses. For example, it looks for and runs a ./configure script, Makefile.PL, Build.PL, or cmake. A standard set of parameters is determined and passed to the program that is run. Some build systems, such as make, do not need a configure step; for these dh_auto_configure will exit without doing anything. This is intended to work for about 90% of packages. If it doesn't work, you're encouraged to skip using dh_auto_configure at all, and just run ./configure or its equivalent manually. OPTIONS
See "BUILD SYSTEM OPTIONS" in debhelper(7) for a list of common build system selection and control options. -- params Pass params to the program that is run, after the parameters that dh_auto_configure usually passes. For example: dh_auto_configure -- --with-foo --enable-bar SEE ALSO
debhelper(7) This program is a part of debhelper. AUTHOR
Joey Hess <joeyh@debian.org> 11.1.6ubuntu2 2018-05-10 DH_AUTO_CONFIGURE(1)
All times are GMT -4. The time now is 01:22 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy