Sponsored Content
Full Discussion: compiling XFRee86 4.2.0
Top Forums UNIX for Dummies Questions & Answers compiling XFRee86 4.2.0 Post 23811 by choasforages on Monday 1st of July 2002 01:48:30 AM
Old 07-01-2002
Question compiling XFRee86 4.2.0

i am currently trying to compile XFree86 under redhat 7.3. i am used to ./configure make make install, but i know that xfree86 is very different. what are the basic steps for building it. i already have read the documentation, but it wasn't of much help. it was erroring out on the imake. i don't have the exact error right now, but i can try agian and post it,

thank you
 

9 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

xfree86 configuration

I've been trying to configure XFree86, and the first times that I have, it will only run at 320x? resolution.. I have an ATI card, and I've tried using the /stand/sysinstall graphical configuration method, and I've tried xf86config as well, both render the same results. that was before i... (3 Replies)
Discussion started by: adn
3 Replies

2. Programming

XFree86

So where do we post questions about developing for X? Or do we just not do that here? (2 Replies)
Discussion started by: Gekko
2 Replies

3. UNIX Desktop Questions & Answers

XFREE86 4.2 question

Hi folkss... I just install Freebsd 4.5 mini disk which install only the core FREEBSD system nothing else. I then want to install KDE 3.0 so I install XFREE86 4.2 and I installed both of these programs successfully with pkg_add "filename.tgz" I also install wrapper.tgz for "startx"... (1 Reply)
Discussion started by: helpme2
1 Replies

4. UNIX Desktop Questions & Answers

Installing XFREE86 4.2 question

Hi folksss.. I will ask similiar to my previous post. Have anyone successfully install XFree86 ver. 4.2 on FREEBSD 4.5 from scratch ??? If U do, please provide step by step how U do it. Do U use graphic user interface to setup the hardware configuration or DOS configuration ? I... (2 Replies)
Discussion started by: helpme2
2 Replies

5. UNIX Desktop Questions & Answers

X.Org and XFree86

X.Org just released a new version of their X (X11R6.7). Besides Liscense stuff, what is better about X.org then XFree? What is better about XFree then X.org? Also: Will my fglrx (ATI) or nvidia drivers (designed for XFree86 4.3) work on X.org? (2 Replies)
Discussion started by: punkrockguy318
2 Replies

6. BSD

Problems with Xfree86

Hi to all! I'm very novice in Unix/Linux. I installed FreeBSD 4.10 in my pentium II 450mhz 64MB 4.300GB more than 5 times and the error continues... In the line mode i type "startx" (to enter in X)...but show me a message : FATAL SERVER ERROR NO SCREENS FOUND X CONNECTION TO :0.0... (6 Replies)
Discussion started by: israel
6 Replies

7. BSD

again XFree86

hi everybody i installed FreeBSD 5.x on a box with a video card Diamond SpeedStar A90 and a Fujitsu Siemens Monitor B772-1 when i do "startx" it gives me something like this: fatal error: no devices detected no screen detected i'm lost...i don't know what to... (3 Replies)
Discussion started by: hmaiida
3 Replies

8. BSD

XFree86 4.5 problem

Hello, i have a S3 Trio64V+ card. I installed last release of XFree under FreeBSD 5.4. I do xf86config, but when i try startx i have this error: nsinternal# startx XFree86 Version 4.5.0 Release Date: 16 March 2005 X Protocol Version 11, Revision 0 Build Operating System: FreeBSD... (1 Reply)
Discussion started by: jamesf
1 Replies

9. UNIX for Advanced & Expert Users

Old XFree86 configuration error

Hello experts, I installed an old linux distribution and i'm having troubles with the XFree86 server. The thing is, when i run XF86Setup, X server and windows actually works, because i can get the graphical configuration screen, but when i'm "done" and save the changes to the config file... (1 Reply)
Discussion started by: semash!
1 Replies
RPMBUILD(8)						      System Manager's Manual						       RPMBUILD(8)

NAME
rpmbuild - Build RPM Package(s) SYNOPSIS
BUILDING PACKAGES: rpmbuild {-ba|-bb|-bp|-bc|-bi|-bl|-bs} [rpmbuild-options] SPECFILE ... rpmbuild {-ta|-tb|-tp|-tc|-ti|-tl|-ts} [rpmbuild-options] TARBALL ... rpmbuild {--rebuild|--recompile} SOURCEPKG ... MISCELLANEOUS: rpmbuild --showrc rpmbuild-options [--buildroot DIRECTORY] [--clean] [--nobuild] [--rmsource] [--rmspec] [--short-circuit] [--target PLATFORM] DESCRIPTION
rpmbuild is used to build both binary and source software packages. A package consists of an archive of files and meta-data used to install and erase the archive files. The meta-data includes helper scripts, file attributes, and descriptive information about the package. Packages come in two varieties: binary packages, used to encapsulate software to be installed, and source packages, containing the source code and recipe necessary to produce binary packages. One of the following basic modes must be selected: Build Package, Build Package from Tarball, Recompile Package, Show Configuration. GENERAL OPTIONS These options can be used in all the different modes. -?, --help Print a longer usage message then normal. --version Print a single line containing the version number of rpm being used. --quiet Print as little as possible - normally only error messages will be displayed. -v Print verbose information - normally routine progress messages will be displayed. -vv Print lots of ugly debugging information. --rcfile FILELIST Each of the files in the colon separated FILELIST is read sequentially by rpm for configuration information. Only the first file in the list must exist, and tildes will be expanded to the value of $HOME. The default FILELIST is /usr/lib/rpm/rpmrc:/usr/lib/rpm/redhat/rpmrc:/etc/rpmrc:~/.rpmrc. --pipe CMD Pipes the output of rpm to the command CMD. --dbpath DIRECTORY Use the database in DIRECTORY rather than the default path /var/lib/rpm --root DIRECTORY Use the file system tree rooted at DIRECTORY for all operations. Note that this means the database within DIRECTORY will be used for dependency checks and any scriptlet(s) (e.g. %post if installing, or %prep if building, a package) will be run after a chroot(2) to DIRECTORY. BUILD OPTIONS The general form of an rpm build command is rpmbuild -bSTAGE|-tSTAGE [ rpmbuild-options ] FILE ... The argument used is -b if a spec file is being used to build the package and -t if rpmbuild should look inside of a (possibly compressed) tar file for the spec file to use. After the first argument, the next character (STAGE) specifies the stages of building and packaging to be done and is one of: -ba Build binary and source packages (after doing the %prep, %build, and %install stages). -bb Build a binary package (after doing the %prep, %build, and %install stages). -bp Executes the "%prep" stage from the spec file. Normally this involves unpacking the sources and applying any patches. -bc Do the "%build" stage from the spec file (after doing the %prep stage). This generally involves the equivalent of a "make". -bi Do the "%install" stage from the spec file (after doing the %prep and %build stages). This generally involves the equivalent of a "make install". -bl Do a "list check". The "%files" section from the spec file is macro expanded, and checks are made to verify that each file exists. -bs Build just the source package. The following options may also be used: --buildroot DIRECTORY When building a package, override the BuildRoot tag with directory DIRECTORY. --clean Remove the build tree after the packages are made. --nobuild Do not execute any build stages. Useful for testing out spec files. --nodeps Do not verify build dependencies. --rmsource Remove the sources after the build (may also be used standalone, e.g. "rpmbuild --rmsource foo.spec"). --rmspec Remove the spec file after the build (may also be used standalone, eg. "rpmbuild --rmspec foo.spec"). --short-circuit Skip straight to specified stage (i.e., skip all stages leading up to the specified stage). Only valid with -bc, -bi, and -bb. Useful for local testing only. Packages built this way will be marked with an unsatisfiable dependency to prevent their accidental use. --target PLATFORM When building the package, interpret PLATFORM as arch-vendor-os and set the macros %_target, %_target_cpu, and %_target_os accord- ingly. REBUILD AND RECOMPILE OPTIONS There are two other ways to invoke building with rpm: rpmbuild --rebuild|--recompile SOURCEPKG ... When invoked this way, rpmbuild installs the named source package, and does a prep, compile and install. In addition, --rebuild builds a new binary package. When the build has completed, the build directory is removed (as in --clean) and the the sources and spec file for the package are removed. SHOWRC The command rpmbuild --showrc shows the values rpmbuild will use for all of the options are currently set in rpmrc and macros configuration file(s). FILES
rpmrc Configuration /usr/lib/rpm/rpmrc /usr/lib/rpm/redhat/rpmrc /etc/rpmrc ~/.rpmrc Macro Configuration /usr/lib/rpm/macros /usr/lib/rpm/redhat/macros /etc/rpm/macros ~/.rpmmacros Temporary /var/tmp/rpm* SEE ALSO
gendiff(1), popt(3), rpm(8), rpm2cpio(8), rpmkeys(8) rpmspec(8), rpmsign(8), rpmbuild --help - as rpm supports customizing the options via popt aliases it's impossible to guarantee that what's described in the manual matches what's available. http://www.rpm.org/ <URL:http://www.rpm.org/> AUTHORS
Marc Ewing <marc@redhat.com> Jeff Johnson <jbj@redhat.com> Erik Troan <ewt@redhat.com> Red Hat, Inc. 09 June 2002 RPMBUILD(8)
All times are GMT -4. The time now is 12:10 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy